Skip to content

Commit 3899cf8

Browse files
committed
Corrected some mistakes
1 parent a300e6b commit 3899cf8

File tree

3 files changed

+2
-3
lines changed

3 files changed

+2
-3
lines changed

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,5 @@ yarn-error.log*
3737
# external fonts
3838
public/fonts/**/Optimistic_*.woff2
3939
.gitignore
40-
/src/components
4140
/src/utils
4241
/src/css

src/components/MDX/ExpandableCallout.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ const variantMap = {
2626
'linear-gradient(rgba(249, 247, 243, 0), rgba(249, 247, 243, 1)',
2727
},
2828
note: {
29-
title: 'توجه',
29+
title: 'Note',
3030
Icon: IconNote,
3131
containerClasses:
3232
'bg-green-5 dark:bg-green-60 dark:bg-opacity-20 text-primary dark:text-primary-dark text-lg',

src/components/MDX/MDXComponents.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ function YouWillLearn({
173173
children: any;
174174
isChapter?: boolean;
175175
}) {
176-
let title = isChapter ? 'In this chapter' : 'آنچه خواهید آموخت';
176+
let title = isChapter ? 'In this chapter' : 'You will learn';
177177
return <SimpleCallout title={title}>{children}</SimpleCallout>;
178178
}
179179

0 commit comments

Comments
 (0)