-
-
Notifications
You must be signed in to change notification settings - Fork 32.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[docs] Specify "Material UI" (not "MUI") where appropriate throughout the docs #37066
[docs] Specify "Material UI" (not "MUI") where appropriate throughout the docs #37066
Conversation
Signed-off-by: Sam Sycamore <[email protected]>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Love this ⎯ thanks for doing it! 🤙
… the docs (mui#37066) Signed-off-by: Sam Sycamore <[email protected]>
"scripts": { | ||
- "start": "react-scripts start", | ||
- "build": "react-scripts build", | ||
- "test": "react-scripts test", | ||
+ "start": "react-app-rewired start", | ||
- "build": "react-scripts build", | ||
+ "build": "react-app-rewired build", | ||
- "test": "react-scripts test", | ||
+ "test": "react-app-rewired test", | ||
"eject": "react-scripts eject" | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think this was correct before.
✅
"scripts": {
- "start": "react-scripts start",
- "build": "react-scripts build",
- "test": "react-scripts test",
+ "start": "react-app-rewired start",
+ "build": "react-app-rewired build",
+ "test": "react-app-rewired test",
"eject": "react-scripts eject"
}
❌
"scripts": {
- "start": "react-scripts start",
+ "start": "react-app-rewired start",
- "build": "react-scripts build",
+ "build": "react-app-rewired build",
- "test": "react-scripts test",
+ "test": "react-app-rewired test",
"eject": "react-scripts eject"
}
Fixed in #38747.
Why? This is to make it easier to 1. follow what changed 2. copy and paste the change. This is how git behaves by default, developer will be less disoriented.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Weird, I don't remember touching these lines at all in this PR—not sure how they got changed.
In an effort to address the ongoing confusion about MUI vs. Material UI, I've combed through the documentation and tried to replace all instances of
MUI
where we're actually talking aboutMaterial UI
specifically. We need to make sure that users understand that MUI the company is responsible for Material UI the product.This is a big PR that touches a lot of files, so I tried to keep edits limited to just this one thing. Exceptions are where the original sentences were in need of grammar touch-ups. I ignored blog posts.
I think some pages here need to be rewritten completely—Support and FAQ, for example—but I'll save those for future PRs.