From 2d8bfea24e64110c4d0456a2948ae5ab01820cd9 Mon Sep 17 00:00:00 2001
From: TinUnkai <tinunkai@users.noreply.github.com>
Date: Fri, 8 May 2020 12:27:16 +0900
Subject: [PATCH] spelling miss (#2647)

settins -> settings
---
 docs/tutorials/finetune.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/docs/tutorials/finetune.md b/docs/tutorials/finetune.md
index 17bc5d4c..05fc3c00 100644
--- a/docs/tutorials/finetune.md
+++ b/docs/tutorials/finetune.md
@@ -12,7 +12,7 @@ Take the finetuning process on Cityscapes Dataset as an example, the users need
 
 ## Inherit base configs
 To release the burdun and reduce bugs in writing the whole configs, MMDetection V2.0 support inheriting configs from multiple existing configs. To finetune a Mask RCNN model, the new config needs to inherit
-`_base_/models/mask_rcnn_r50_fpn.py` to build the basic structure of the model. To use the Cityscapes Dataset, the new config can also simply inherit `_base_/datasets/cityscapes_instance.py`. For runtime settins such as training schedules, the new config needs to inherit `_base_/default_runtime.py`. This configs are in the `configs` directory and the users can also choose to write the whole contents rather than use inheritance.
+`_base_/models/mask_rcnn_r50_fpn.py` to build the basic structure of the model. To use the Cityscapes Dataset, the new config can also simply inherit `_base_/datasets/cityscapes_instance.py`. For runtime settings such as training schedules, the new config needs to inherit `_base_/default_runtime.py`. This configs are in the `configs` directory and the users can also choose to write the whole contents rather than use inheritance.
 
 ```python
 _base_ = [
-- 
GitLab