diff --git a/content/community/courses.md b/content/community/courses.md
index 47883c50a..1a9e66e5a 100644
--- a/content/community/courses.md
+++ b/content/community/courses.md
@@ -28,7 +28,7 @@ permalink: community/courses.html
- [Egghead.io](https://egghead.io/browse/frameworks/react) - Short instructional videos on React and many other topics.
-- [Frontend Masters](https://frontendmasters.com/courses/) - Video courses on React and other frontend frameworks.
+- [Frontend Masters](https://frontendmasters.com/learn/react/) - Video courses on React.
- [Fullstack React](https://www.fullstackreact.com/) - The up-to-date, in-depth, complete guide to React and friends.
diff --git a/content/community/videos.md b/content/community/videos.md
index a99dc80c7..b59ddfb98 100644
--- a/content/community/videos.md
+++ b/content/community/videos.md
@@ -13,12 +13,12 @@ Videos dedicated to the discussion of React and the React ecosystem.
### React Conf 2019 {#react-conf-2019}
A playlist of videos from React Conf 2019.
-
+
### React Conf 2018 {#react-conf-2018}
A playlist of videos from React Conf 2018.
-
+
### React.js Conf 2017 {#reactjs-conf-2017}
diff --git a/content/tutorial/tutorial.md b/content/tutorial/tutorial.md
index 31d43423f..94ea0b3fc 100644
--- a/content/tutorial/tutorial.md
+++ b/content/tutorial/tutorial.md
@@ -524,7 +524,11 @@ Chú ý rằng trong hàm `handleClick`, chúng ta sử dụng `.slice()` để
### Tại sao tính bất biến là quan trọng {#why-immutability-is-important}
+<<<<<<< HEAD
Trong phần code ví dụ trước, ta đã sử dụng hàm `.slice()` để tạo ra bản sao của mảng `squares` thay vì sửa trực tiếp nó. Giờ ta sẽ thảo luận về tính bất biến và vì sao tính bất biến lại quan trọng.
+=======
+In the previous code example, we suggested that you use the `.slice()` method to create a copy of the `squares` array to copy instead of modifying the existing array. We'll now discuss immutability and why immutability is important to learn.
+>>>>>>> 446345cfba91b62546f46f88fad893937a826cdc
Thông thường, ta có 2 hướng tiếp cận đối với việc thay đổi dữ liệu. Hướng tiếp cận đầu tiên đó là *thay đổi (mutate)* trực tiếp giá trị của dữ liệu. Hướng tiếp cận thứ hai đó là thay dữ liệu hiện có bằng một bản sao của nó và sửa đổi trên bản sao đó.