Skip to content

Commit 7a867a8

Browse files
Merge pull request #6 from H0R15H0/fix-typo
Fix typo
2 parents d4266b2 + dbf19df commit 7a867a8

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ For Rails projects, the snippet above would go to `config/application.rb`.
4444

4545
### API Client
4646

47-
#### Instanciating a new Notion API client
47+
#### Instantiating a new Notion API client
4848

4949
```ruby
5050
client = Notion::Client.new

lib/notion/api/endpoints/pages.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ def page(options = {})
3636
# specific to the property type, e.g. {"checkbox": true}.
3737
#
3838
# @option options [Object] :children
39-
# An optional array of Block objects representing the Page’s conent
39+
# An optional array of Block objects representing the Page’s content
4040
def create_page(options = {})
4141
throw ArgumentError.new('Required arguments :parent.database_id missing') if options.dig(:parent, :database_id).nil?
4242
post("pages", options)

0 commit comments

Comments
 (0)