Skip to content

Commit 7689795

Browse files
authored
Fix typos oepn open (PaddlePaddle#70329)
1 parent fee4be8 commit 7689795

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

tools/check_api_approvals.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ if [ -n "${echo_list}" ];then
130130
echo "There are ${failed_num} approved errors."
131131
echo "**************************************************************"
132132

133-
# L40 L48 L62 has fetch the result out, but there are splitted.
133+
# L40 L48 L62 has fetch the result out, but there are split.
134134
if [ "${api_spec_diff}" != "" -o "${api_annotation_diff}" != "" ] ; then
135135
python ${PADDLE_ROOT}/tools/diff_api.py ${PADDLE_ROOT}/paddle/fluid/API_DEV.spec ${PADDLE_ROOT}/paddle/fluid/API_PR.spec
136136
fi

tools/get_single_test_cov.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ def analysisFNDAFile(rootPath, test):
8686
fn_filename = f'{rootPath}/build/ut_map/{test}/fnda.tmp'
8787
try:
8888
f = open(fn_filename)
89-
print(f"oepn {fn_filename} successfully")
89+
print(f"open {fn_filename} successfully")
9090
except FileNotFoundError:
9191
print(f"{fn_filename} is not found.")
9292
return
@@ -133,7 +133,7 @@ def getBaseFnda(rootPath, test):
133133
filename = f'{rootPath}/build/ut_map/{test}/coverage.info.tmp'
134134
try:
135135
f = open(filename)
136-
print(f"oepn {filename} successfully")
136+
print(f"open {filename} successfully")
137137
except FileNotFoundError:
138138
print(f"{filename} is not found.")
139139
symbol_fnda = {}

0 commit comments

Comments
 (0)