Skip to content

Commit 0952d27

Browse files
committed
updated readme and fix typo error of trim
1 parent 699ec58 commit 0952d27

File tree

3 files changed

+8
-6
lines changed

3 files changed

+8
-6
lines changed

extra/editor.png

-172 KB
Loading

front-end/src/Components/FileNavigation/ExecuteButton.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -131,8 +131,8 @@ const ExecuteButton = () => {
131131
const data = await response?.json();
132132
const { error, output, executionTime } = data;
133133
const toShow = error.length
134-
? `Error : ${error.trin()}\n`
135-
: `${output.trim()}\nExecution Time : ${executionTime}ms\n`;
134+
? `Error : ${error.trimEnd()}\n`
135+
: `${output.trimEnd()}\nExecution Time : ${executionTime}ms\n`;
136136

137137
dispatch(setIsBottomPannelOpen(true));
138138
dispatch(setShowInBottomPannel("output"));

readme.md

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@
44
<img src="./front-end/public/favicon.svg" alt="Image" style="width: 100px;">
55
</p>
66

7-
Welcome to CodeVerse, an online code editor and compiler designed to support various programming languages including Java, C++, Python, and more. With CodeVerse, you can write, edit, and execute your code seamlessly within a web-based environment.
7+
Welcome to CodeVerse, an online code editor and compiler designed to support various programming languages including Java, C++, Python, and more. With CodeVerse, you can write, edit, and execute your code seamlessly within a web-based environment.
88

99
<p align="center">
1010
<img src="./extra/editor.png" alt="editor image" style="width: 100%;">
1111
</p>
1212

13-
## Features
13+
> ## Features
1414
1515
- **Multi-Language Support**: CodeVerse supports multiple programming languages, providing a versatile platform for coding in Java, C++, Python, and other popular languages.
1616

@@ -26,9 +26,11 @@ Welcome to CodeVerse, an online code editor and compiler designed to support var
2626

2727
- **Autocomplete Suggestions**: CodeVerse offers intelligent autocomplete suggestions as you type. The app analyzes your code context and provides suggestions for variables, functions, and other relevant code snippets. This feature saves time, reduces typos, and helps you write code more efficiently.
2828

29-
## Technologies Used
29+
<br/>
3030

31-
CodeVerse is built using modern web technologies and frameworks, including:
31+
> ## Technologies Used
32+
33+
CodeVerse is built using modern web technologies and frameworks, including:
3234

3335
- **Frontend**: The frontend is developed using HTML, CSS, and JavaScript. It utilizes popular libraries like React.js to create a dynamic and responsive user interface.
3436

0 commit comments

Comments
 (0)