diff --git a/docs/calendar/configuring.md b/docs/calendar/configuring.md
index 35a40420..abc959b5 100644
--- a/docs/calendar/configuring.md
+++ b/docs/calendar/configuring.md
@@ -8,9 +8,9 @@ description: You can explore the configuration of Calendar in the documentation
## Calendar modes
-There are several modes of displaying Calendar, which are set via the [](calendar/api/calendar_mode_config.md) property:
+Calendar supports several display modes. Set the [](calendar/api/calendar_mode_config.md) property to choose one:
-- **"calendar"** - the default mode. The current date (year and month) is shown in the calendar
+- `"calendar"` - the default mode. The calendar shows the current date (year and month).
~~~js
const calendar = new dhx.Calendar("calendar_container");
@@ -18,7 +18,7 @@ const calendar = new dhx.Calendar("calendar_container");

-- **"month"** - only months of the current year are shown in the calendar
+- `"month"` - the calendar shows only months of the current year.
~~~js
const calendar = new dhx.Calendar("calendar_container", {
@@ -28,7 +28,7 @@ const calendar = new dhx.Calendar("calendar_container", {

-- **"year"** - only years are shown, including the current one
+- `"year"` - the calendar shows only years, including the current one.
~~~js
const calendar = new dhx.Calendar("calendar_container", {
@@ -40,12 +40,12 @@ const calendar = new dhx.Calendar("calendar_container", {
**Related sample**: [Calendar. Calendar modes](https://snippet.dhtmlx.com/n9q0tc0q)
-You can also show the calendar in one of the modes using the [](calendar/api/calendar_showdate_method.md) method.
+Call the [](calendar/api/calendar_showdate_method.md) method to show the calendar in one of the modes.
## Date format
-There is a possibility to specify the format of dates in the calendar via the [](calendar/api/calendar_dateformat_config.md) property. The default format is "%d/%m/%y".
-The full list of available characters used to make formats is provided in the [API reference](calendar/api/calendar_dateformat_config.md).
+Set the [](calendar/api/calendar_dateformat_config.md) property to specify the date format in the calendar. The default format is "%d/%m/%y".
+The [API reference](calendar/api/calendar_dateformat_config.md) lists all characters available for formats.
~~~js
const calendar = new dhx.Calendar("calendar_container", {
@@ -61,8 +61,8 @@ const calendar = new dhx.Calendar("calendar_container", {
**Related sample**: [Calendar. Marked and disabled dates](https://snippet.dhtmlx.com/ic5oeiga)
-To disable certain dates, use the [](calendar/api/calendar_disableddates_config.md) setting. The value of the property must be a function that takes a *date* as a parameter and returns a *boolean* value.
-The dates, for which the function returns *true*, are dimmed in the calendar.
+The [](calendar/api/calendar_disableddates_config.md) setting accepts a function that takes a `date` as a parameter and returns a `boolean` value.
+The calendar dims every date for which the function returns `true`.
~~~js
const calendar = new dhx.Calendar("calendar_container", {
@@ -88,7 +88,7 @@ const calendar = new dhx.Calendar("calendar_container", {
**Related sample**: [Calendar. The days of this month only](https://snippet.dhtmlx.com/4wi5hbtr)
-A default calendar shows both the days of the current month and several days of the previous and next months. You can choose the mode of displaying just the current month by setting the value of the [](calendar/api/calendar_thismonthonly_config.md) configuration property to *true*:
+A default calendar shows both the days of the current month and several days of the previous and next months. Set the [](calendar/api/calendar_thismonthonly_config.md) configuration property to `true` to show only the current month:
~~~js
const calendar = new dhx.Calendar("calendar_container", {
@@ -102,7 +102,7 @@ const calendar = new dhx.Calendar("calendar_container", {
**Related sample**: [Calendar. Marked and disabled dates](https://snippet.dhtmlx.com/ic5oeiga)
-You can highlight certain dates in the calendar. Set the [](calendar/api/calendar_mark_config.md) property for that. The value of the property must be a function that takes a *date* as a parameter and returns a *string* with the name of a CSS class for marked dates or an empty string for other dates.
+Set the [](calendar/api/calendar_mark_config.md) property to highlight dates in the calendar. The property takes a function that receives a `date` and returns a `string`. Return the name of a CSS class to mark the date, or an empty string to leave it unmarked.
~~~js
const calendar = new dhx.Calendar("calendar_container", {
@@ -115,7 +115,7 @@ const calendar = new dhx.Calendar("calendar_container", {
});
~~~
-Where "highlight-date" is a CSS class like this:
+Where `highlight-date` is a CSS class like this:
~~~html
~~~
-- specify the name of the created CSS class (or names of classes separated by spaces) as the value of the [](calendar/api/calendar_css_config.md) property in the Calendar configuration:
+- Assign the class name (or several names separated by spaces) to the [](calendar/api/calendar_css_config.md) property:
~~~js
const calendar = new dhx.Calendar("calendar_container", {
@@ -60,7 +60,7 @@ For example:
**Related sample**: [Calendar. Custom styles for selected date](https://snippet.dhtmlx.com/9u0ix3na)
-You can apply custom styling to dates selected in a calender as well as to [date ranges](calendar/operating_calendar.md#linking-two-calendars). There are system styles you need to change for this purpose:
+You can style selected dates and [date ranges](calendar/operating_calendar.md#linking-two-calendars) with your own CSS. Override these system styles:
~~~html