From 1dfe78101c0731979b05581a971828ed3f441d6c Mon Sep 17 00:00:00 2001 From: Digital Studium Date: Fri, 12 May 2023 15:00:52 +0300 Subject: [PATCH] fix mistakes --- content/en/bash-lifehacks/bash-arrays-and-hashmaps.md | 2 +- content/en/nginx-lifehacks/nginx-configs-examples.md | 2 +- content/ru/nginx-lifehacks/nginx-configs-examples.md | 2 +- themes/ds | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/content/en/bash-lifehacks/bash-arrays-and-hashmaps.md b/content/en/bash-lifehacks/bash-arrays-and-hashmaps.md index a5a69ff..980c058 100644 --- a/content/en/bash-lifehacks/bash-arrays-and-hashmaps.md +++ b/content/en/bash-lifehacks/bash-arrays-and-hashmaps.md @@ -20,7 +20,7 @@ In order to add single or multiple new elements to the end of array, you should sample_array+=(six seven) ``` -In order to get elements on the list in a cycle, you should use this syntax: +In order to get elements of the list in a cycle, you should use this syntax: ```shell for i in ${sample_array[@]} diff --git a/content/en/nginx-lifehacks/nginx-configs-examples.md b/content/en/nginx-lifehacks/nginx-configs-examples.md index 9955d3d..7fb3264 100644 --- a/content/en/nginx-lifehacks/nginx-configs-examples.md +++ b/content/en/nginx-lifehacks/nginx-configs-examples.md @@ -31,7 +31,7 @@ server { listen 80; server_name example.com www.example.com; - access_log /var/log/nginx/example.com.log main; + access_log /var/log/nginx/example.com.log; location / { root /var/www/example.com; diff --git a/content/ru/nginx-lifehacks/nginx-configs-examples.md b/content/ru/nginx-lifehacks/nginx-configs-examples.md index e98e236..e65a640 100644 --- a/content/ru/nginx-lifehacks/nginx-configs-examples.md +++ b/content/ru/nginx-lifehacks/nginx-configs-examples.md @@ -31,7 +31,7 @@ server { listen 80; server_name example.com www.example.com; - access_log /var/log/nginx/example.com.log main; + access_log /var/log/nginx/example.com.log; location / { root /var/www/example.com; diff --git a/themes/ds b/themes/ds index a5ae15f..1c0b4b2 160000 --- a/themes/ds +++ b/themes/ds @@ -1 +1 @@ -Subproject commit a5ae15fa2a35aa0a89ec890552c16df0a8d27f99 +Subproject commit 1c0b4b2994e65a10c50a057d23d058d0721912f1