From 7920f71517622ef2f28cdd1cab6be2d0ec25d191 Mon Sep 17 00:00:00 2001 From: Stephen Baynham Date: Fri, 25 Nov 2016 00:25:18 -0800 Subject: [PATCH] Bad formatting --- library/include/modules/Job.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/library/include/modules/Job.h b/library/include/modules/Job.h index 1448b6656..439a4484d 100644 --- a/library/include/modules/Job.h +++ b/library/include/modules/Job.h @@ -68,16 +68,16 @@ namespace DFHack // This helpful method only removes the backref from the item to the job, but it doesn't // remove the item ref from the job's vector, or delete it or anything. Think of it as a method - // that does all the needful to make an item ref ready to delete. + // that does all the needful to make an item ref ready to delete. DFHACK_EXPORT void disconnectJobItem(df::job_item_ref *item, df::job *job); // This helpful method only removes the backref from whatever the general_ref points to, // it doesn't remove the general_ref from the job's vector, or delete it or anything. - // Think of it as a method that does all the needful to make a ref ready to delete. + // Think of it as a method that does all the needful to make a ref ready to delete. // If it returns false, you've found a ref that the method doesn't know how to handle. Congratulations! // You should report that and/or check in a fix. DFHACK_EXPORT bool disconnectJobGeneralRef(df::general_ref *ref, df::job *job); // Delete a job & remove all refs from everywhere. - // This method DELETES the job object! Everything related to it will be wiped + // This method DELETES the job object! Everything related to it will be wiped // clean from the earth, so make sure you pull what you need out before calling this! DFHACK_EXPORT bool removeJob(df::job *job);