Github user medcv commented on a diff in the pull request:
https://github.com/apache/flink/pull/6112#discussion_r192689122
--- Diff: docs/ops/filesystems.md ---
@@ -70,21 +70,20 @@ That way, Flink seamlessly supports all of Hadoop file
systems, and all Hadoop-c
- **har**
- ...
-
## Common File System configurations
The following configuration settings exist across different file systems
#### Default File System
-If paths to files do not explicitly specify a file system scheme (and
authority), a default scheme (and authority) will be used.
+If path to files do not explicitly specify a file system scheme (and
authority), a default scheme (and authority) will be used.
{% highlight yaml %}
fs.default-scheme: <default-fs>
{% endhighlight %}
-For example, if the default file system configured as `fs.default-scheme:
hdfs://localhost:9000/`, then a a file path of
-`/user/hugo/in.txt'` is interpreted as
`hdfs://localhost:9000/user/hugo/in.txt'`
+For example, if the default file system configured as `fs.default-scheme:
hdfs://localhost:9000/`, then a file path of
+`'/user/hugo/in.txt'` is interpreted as
`'hdfs://localhost:9000/user/hugo/in.txt'`
--- End diff --
will do
---