diff --git a/docs/gl_objects/snippets.py b/docs/gl_objects/snippets.py index f32a11e36..87d1a429b 100644 --- a/docs/gl_objects/snippets.py +++ b/docs/gl_objects/snippets.py @@ -8,7 +8,10 @@ # get snippet = gl.snippets.get(snippet_id) -# get the content +# get the content - API v4 +content = snippet.content() + +# get the content - API v3 content = snippet.raw() # end get