Skip to content

Commit

Permalink
GITBOOK-16: No subject
Browse files Browse the repository at this point in the history
  • Loading branch information
code-xhyun authored and gitbook-bot committed May 3, 2024
1 parent b154d00 commit f0b8a9d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion gitbook/docs/creating-jobs/create.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ const pulse = new Pulse();

// Create a new job for data analysis
const analysisJob = pulse.create('dataAnalysis', { datasetId: 101 });
analysisJob.save() //If you want to save it
analysisJob.save() // If you want to save it
```


Expand Down
2 changes: 1 addition & 1 deletion gitbook/docs/managing-jobs/manually-working/unique.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ _This does **NOT** save the job in the database. you must explicitly declare_ [
{% code fullWidth="false" %}
```typescript
job.unique({ 'data.type': 'email', 'data.userId': '12345' });
await job.save();
await job.save(); // If you want to save it
```
{% endcode %}

Expand Down

0 comments on commit f0b8a9d

Please sign in to comment.