Skip to content

Commit 10c7933

Browse files
committed
Un-padded list
1 parent 61af7c1 commit 10c7933

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

programming-languages/docs/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ def get_lang_from_path(filepath):
6868
]
6969
return lang_matches[0] if len(matches) == 1 else lang_matches
7070

71-
print(get_lang_from_path('main.rs')) # => [ 'RenderScript', 'Rust' ]
71+
print(get_lang_from_path('main.rs')) # => ['RenderScript', 'Rust']
7272
print(get_lang_from_path('script.kt')) # => Kotlin
7373
print(get_lang_from_path('data.avsc')) # => [] (use data-languages pkg)
7474
```

0 commit comments

Comments
 (0)