Fixed some typos in the comments of rocksdb options file example

Summary: Fixed some typos in the comments of rocksdb options file example

Test Plan: No code change.

Reviewers: igor, anthony, IslamAbdelRahman, rven, kradhakrishnan, sdong

Reviewed By: sdong

Subscribers: dhruba, leveldb

Differential Revision: https://reviews.facebook.net/D51393
main
Yueh-Hsuan Chiang 9 years ago
parent ef8ed3681c
commit d7421c22f8
  1. 9
      examples/rocksdb_option_file_example.ini

@ -1,9 +1,10 @@
# This is a RocksDB option file. # This is a RocksDB option file.
# #
# A typical RocksDB options file has three sections, which are # A typical RocksDB options file has three sections, which are
# Version, DBOptions, and more than one CFOptions. The RocksDB # Version section, DBOptions section, at least one CFOptions
# options file in general follows the basic INI file format # section, and one TableOptions section for each column family.
# with the following extensions / modifications: # The RocksDB options file in general follows the basic INI
# file format with the following extensions / modifications:
# #
# * Escaped characters # * Escaped characters
# We escaped the following characters: # We escaped the following characters:
@ -20,7 +21,7 @@
# Each statement contains a '=', where extra white-spaces # Each statement contains a '=', where extra white-spaces
# are supported. However, we don't support multi-lined statement. # are supported. However, we don't support multi-lined statement.
# Furthermore, each line can only contain at most one statement. # Furthermore, each line can only contain at most one statement.
# * Section # * Sections
# Sections are of the form [SecitonTitle "SectionArgument"], # Sections are of the form [SecitonTitle "SectionArgument"],
# where section argument is optional. # where section argument is optional.
# * List # * List

Loading…
Cancel
Save